fac951061da026e4cb68da57a910c8454d55dc37,src/main/java/com/teamwizardry/wizardry/api/util/Utils.java,Utils,shiftColorHueRandomly,#Color#number#,34

Before Change


		return new Color(
				(int) Math.min(color.getRed() + shiftAmount, 255),
				(int) Math.min(color.getGreen() + shiftAmount, 255),
				(int) Math.min(color.getBlue() + shiftAmount, 255));
	}

	/**

After Change


		return new Color(
				(int) Math.max(0, Math.min(color.getRed() + ThreadLocalRandom.current().nextDouble(-shiftAmount, shiftAmount), 255)),
				(int) Math.max(0, Math.min(color.getGreen() + ThreadLocalRandom.current().nextDouble(-shiftAmount, shiftAmount), 255)),
				(int) Math.max(0, Math.min(color.getBlue() + ThreadLocalRandom.current().nextDouble(-shiftAmount, shiftAmount), 255)));
	}

	/**